home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-6.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Baking_Pan" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "metals.inc"
- #include "skies.inc"
- #include "woods.inc"
- #default { finish { Shiny } }
- background { White }
-
- #declare Camera_Loc = <0,6,-18>
-
- camera { location Camera_Loc
- look_at <0,0,0> }
-
- light_source { Camera_Loc color rgb < 2, 2, 2 > }
-
- //------------------------------------------------------------------->
- //
- // Include the file and show the object.
-
- #include "bake-pan.inc"
-
- object { Baking_Pan }
- object { Baking_Pan translate y*4 }
- object { Baking_Pan translate y*-6 rotate y*180 }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-